Zip for WinRT
Setting the Level of Compression

To minimize the file size of the compressed file, set the compression level on the C1ZStreamWriter's constructor by using the following code:

C#
Copy Code
SaveFileDialog dlgSaveFile = new SaveFileDialog();
 
             if (dlgSaveFile.ShowDialog() == true)
             {
                 C1ZStreamWriter compressor = new C1ZStreamWriter(dlgSaveFile.OpenFile(),
                     CompressionLevelEnum.BestCompression);
             }
The code sample above sets the compression level to BestCompression, which has the highest compression time and the lowest speed.

Other compression level options on the C1ZStreamWriter's constructor include the following:

See Also

 

 


Copyright (c) GrapeCity, inc. All rights reserved.

Product Support Forum  |  Documentation Feedback